home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / C and C++ / POSIX / ThinkCPosix / Abort.c next >
Text File  |  1992-09-11  |  123b  |  10 lines

  1. /* $Id: $ */
  2.  
  3. #include "ThinkCPosix.h"
  4.  
  5. void Abort(void)
  6. {
  7.     fprintf(stderr, "Abnormal program termination\n");
  8.     exit(3);
  9. }
  10.